home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop From Home / Introducing the New Way to Shop From Home (Iceland Foods) (2003).iso / pc / help.dxr / UI elements_400.ls < prev    next >
Encoding:
Text File  |  2003-01-01  |  423 b   |  31 lines

  1. on startMovie
  2.   global MacOn
  3.   if MacOn = 1 then
  4.     nothing()
  5.   else
  6.     set the exitLock to 1
  7.     startQuitMsg()
  8.     set the keyDownScript to "myNoEscape"
  9.   end if
  10.   set the keyDownScript to "myNoEscape"
  11. end
  12.  
  13. on quitMsg
  14.   go(1, "closing")
  15. end
  16.  
  17. on myNoEscape
  18.   if the keyCode = 53 then
  19.     go(1, "closing")
  20.   end if
  21. end
  22.  
  23. on stopMovie
  24.   global MacOn
  25.   if MacOn = 1 then
  26.     nothing()
  27.   else
  28.     closeQuitMsg()
  29.   end if
  30. end
  31.